home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rpc_rquotad.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  75 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10226);
  10.  script_version ("$Revision: 1.10 $");
  11.  script_cve_id("CAN-1999-0625");
  12.  name["english"] = "rquotad service";
  13.  name["francais"] = "Service rquotad";
  14.  script_name(english:name["english"], francais:name["francais"]);
  15.  
  16.  desc["english"] = "
  17. The rquotad RPC service is running.  If you do not use this service, then
  18. disable it as it may become a security threat in the future, if a vulnerability
  19. is discovered.
  20.  
  21. Risk factor : Low";
  22.  
  23.  
  24.  desc["francais"] = "
  25. Le service RPC rquotad tourne.
  26. Si vous ne l'utilisez pas, alors
  27. dΘsactivez-le puisqu'il risque de
  28. devenir un jour une faille de 
  29. sΘcuritΘ si une vulnerabilitΘ 
  30. est trouvΘe.
  31.  
  32. Facteur de risque : Faible";
  33.  
  34.  
  35.  script_description(english:desc["english"], francais:desc["francais"]);
  36.  
  37.  summary["english"] = "checks the presence of a RPC service";
  38.  summary["francais"] = "vΘrifie la prΘsence d'un service RPC";
  39.  script_summary(english:summary["english"], francais:summary["francais"]);
  40.  
  41.  script_category(ACT_GATHER_INFO);
  42.  
  43.  
  44.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  45.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  46.  family["english"] = "RPC"; 
  47.  family["francais"] = "RPC";
  48.  script_family(english:family["english"], francais:family["francais"]);
  49.  script_dependencie("rpc_portmap.nasl");
  50.  script_require_keys("rpc/portmap");
  51.  exit(0);
  52. }
  53.  
  54. #
  55. # The script code starts here
  56. #
  57.  
  58. include("misc_func.inc");
  59.  
  60.  
  61.  
  62. RPC_PROG = 100011;
  63. tcp = 0;
  64. port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_UDP);
  65. if(!port){
  66.     port = get_rpc_port(program:RPC_PROG, protocol:IPPROTO_TCP);
  67.     tcp = 1;
  68.     }
  69.  
  70. if(port)
  71. {
  72.  if(tcp)security_warning(port);
  73.  else security_warning(port, protocol:"udp");
  74. }
  75.